package Q4_10_Check_Subtree; import CtCILibrary.AssortedMethods; import CtCILibrary.TreeNode; public class QuestionB { public static boolean containsTree(TreeNode t1, TreeNode t2) { if (t2 == null) { return true; // The empty tree is a subtree of every tree. } return subTree(t1, t2); } /* Checks if the binary tree rooted at r1 contains the binary tree * rooted at r2 as a subtree somewhere within it. */ public static boolean subTree(TreeNode r1, TreeNode r2) { if (r1 == null) { return false; // big tree empty & subtree still not found. } else if (r1.data == r2.data && matchTree(r1,r2)) { return true; } return subTree(r1.left, r2) || subTree(r1.right, r2); } /* Checks if the binary tree rooted at r1 contains the * binary tree rooted at r2 as a subtree starting at r1. */ public static boolean matchTree(TreeNode r1, TreeNode r2) { if (r1 == null && r2 == null) { return true; // nothing left in the subtree } else if (r1 == null || r2 == null) { return false; // exactly tree is empty, therefore trees don't match } else if (r1.data != r2.data) { return false; // data doesn't match } else { return matchTree(r1.left, r2.left) && matchTree(r1.right, r2.right); } } public static void main(String[] args) { // t2 is a subtree of t1 int[] array1 = {1, 2, 1, 3, 1, 1, 5}; int[] array2 = {2, 3, 1}; TreeNode t1 = AssortedMethods.createTreeFromArray(array1); TreeNode t2 = AssortedMethods.createTreeFromArray(array2); if (containsTree(t1, t2)) { System.out.println("t2 is a subtree of t1"); } else { System.out.println("t2 is not a subtree of t1"); } // t4 is not a subtree of t3 int[] array3 = {1, 2, 3}; TreeNode t3 = AssortedMethods.createTreeFromArray(array1); TreeNode t4 = AssortedMethods.createTreeFromArray(array3); if (containsTree(t3, t4)) { System.out.println("t4 is a subtree of t3"); } else { System.out.println("t4 is not a subtree of t3"); } } }